how to parse a string to an integer c#

77

how to parse a string to an integer c# -

    string str = "10s";
 
    int x = Convert.ToInt32(str);
	Console.WriteLine(x);

Comments

Submit
0 Comments